home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / vsrc.tar / voyager7_src / objects.h < prev    next >
C/C++ Source or Header  |  1991-02-27  |  667b  |  30 lines

  1. #if !defined(objects_included)
  2. #define objects_included
  3. /*
  4. // Abstract:
  5. //    OBJECTS.H---HP 48SX Objects
  6. //
  7. //    The HP 48SX Objects C include file defines constants and
  8. //    declares routines for use with displaying objects in the
  9. //    HP 48SX.
  10. //
  11. // Author:
  12. //    Derek S. Nickel
  13. //
  14. // Creation date:
  15. //    25 October 1990
  16. //
  17. // History:
  18. // V01-001    Derek S. Nickel        25-OCT-1990
  19. //    Original.
  20. //
  21. */
  22.  
  23. extern int display_current_object(int *stop);
  24. extern void display_hash_table(bin5_t adr, bin5_t lib_no);
  25. extern void display_link_table(bin5_t adr, bin5_t lib_no);
  26. extern void display_message_table(bin5_t adr, bin5_t lib_no);
  27. extern void display_short_library(bin5_t adr);
  28.  
  29. #endif
  30.